home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-12-19 | 650 b | 28 lines |
- #
- # This is the make file for the trim_lib library.
- #
- # Gershon Elber, June 1993
- #
-
- # Get the destination directories:
- include ..\makeflag.wnt
-
- OBJS = iso_crvs.obj trim_aux.obj trim_dbg.obj trim_err.obj \
- trim_ftl.obj trim_gen.obj
-
- trim_lib.lib: $(OBJS)
- -del trim_lib.lib
- $(IRITLIB) -out:trim_lib.lib *.obj
-
- install: trim_lib.lib
- copy trim_lib.lib $(LIB_DIR)
- -del trim_lib.lib
-
- # Dependencies starts here - do not touch, generated automatically.
- iso_crvs.obj: trim_loc.h ../include/symb_lib.h
- trim_aux.obj: trim_loc.h
- trim_dbg.obj: trim_loc.h ../include/iritprsr.h
- trim_err.obj: trim_loc.h
- trim_ftl.obj: trim_loc.h
- trim_gen.obj: trim_loc.h
-